home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / quicktime vr / vrscript / feature files / vrpicture.h < prev    next >
Encoding:
Text File  |  2000-09-28  |  929 b   |  37 lines

  1. //////////
  2. //
  3. //    File:        VRPicture.h
  4. //
  5. //    Contains:    Headers for drawing pictures into the prescreen buffer.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 1994-1997 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //
  13. //       <1>         01/28/97    rtm        first file
  14. //       
  15. //////////
  16.  
  17. #pragma once
  18.  
  19. // header files
  20. #include <QuickTimeVR.h>
  21.  
  22. #include "ComApplication.h"
  23.  
  24. #if TARGET_OS_MAC
  25. #include "MacFramework.h"
  26. #endif
  27.  
  28. #if TARGET_OS_WIN32
  29. #include "WinFramework.h"
  30. #endif
  31.  
  32. // function prototypes
  33. void                                VRPicture_ShowPicture (WindowObject theWindowObject, UInt32 theResID, UInt32 theEntryID, UInt32 theHeight, UInt32 theWidth, UInt32 thePegSides, UInt32 theOffset, UInt32 theOptions);
  34. void                                VRPicture_DrawNodePictures (WindowObject theWindowObject);
  35. void                                VRPicture_DumpNodePictures (WindowObject theWindowObject);
  36. void                                VRPicture_DumpEntryMem (VRScriptPicturePtr theEntry);
  37.